home *** CD-ROM | disk | FTP | other *** search
- #
- # OS2-ICC/options.mk - Part of Makefile for PFE, compiler options
- # for WATCOM-C on OS/2, DOS or Windows/NT.
- #
- # - the Makefile works with dmake in OS/2
- # (dmake - Copyright (c) 1990,1991 by Dennis Vadura, Version 3.80, PL 0),
- # and the way I configured it (default) dmake uses COMSPEC as command line
- # interpreter which in my case (default) is CMD.EXE.
- # If you use gnu-make and/or a unix-like shell as command line interpreter,
- # be prepared to get errors. One possible cause is the neccessary quoting
- # of a possible `\' in $(PREFIX). I must leave it up to you to get it right.
- #
-
- # Where you store online help files and other stuff.
- PREFIX = "C:" # define a C-string, path delimiter \\ inside ""
- PFELIB = "C:\\lib\\pfe"
- PFEHLP = "C:\\lib\\pfe\\help"
-
- SYSTEM = OS2
- CC = icc
- CL = icc
- CPP = icc /pd
- LD = $(CL)
-
- # /Sm allow "migration" language extensions
- # /Se all language extensions except "migration"
- # /Sp4 alignment of data on 4 Byte boundaries
- # /W3 produce all message types
- # /Q do not display logo
- OPTIONS = /Sm /Se /Sp4 /W3 /Q
-
- # /O optimize
- # /g4 for a 486 processor
- OPTIM = /O /g4
-
- DEBUG = /Ti
-
- STRIP =
-
- LIBS =
-
- TERM_O = term-wat$o
- SYS_O = unix$o
-
-
-